home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Orlando_1993 / Devcon93.4 / Networking2 / AS225 / WhatYouNeed < prev   
Encoding:
Text File  |  1993-01-11  |  1.2 KB  |  34 lines

  1. Shared Socket Library Developer Release 2.3  Jan 11, 1993
  2. ---------------------------------------------------------
  3.  
  4. In order to use this release, you will need :
  5.  
  6. 1. AS225 Release 2 Beta with
  7.     a. inet.library version 5.0 or later in your inet:libs directory
  8.     b. socket.library version 4.0 or greater in your inet:libs directory
  9. 2. A file called 'sana2_devs' in your inet:s directory (see the readme file.)
  10. 3. A directory  in your system's 'devs:' volume called 'networks'.
  11. 4. Any SANA-2 drivers for your specific hardware located in 'devs:networks'.
  12. 6. To modify inet:s/start-inet to replace any board references that are
  13.    'ae0' and the like to 's0'. Example from the standard start-inet:
  14.    
  15.   [ ... ]
  16.  
  17.  ; Configure first ethernet controller.  This will fail if the board is 
  18.  ; missing.
  19.  ;
  20.  
  21.  inet:c/ifconfig >nil: s0 $hostname netmask 255.255.255.0 -trailers
  22.  ;                     ^^
  23.  ; inet:c/ifconfig >nil: ae0 $hostname netmask 255.255.255.0 -trailers -OLD-
  24.  ;                       ^^^\_old
  25.  if warn 
  26.     echo "Internet boot fail: could not configure first ethernet controller"
  27.     echo "Is the controller installed properly?"
  28.     quit 20
  29.  endif
  30.  
  31.   [ ... ]
  32.  
  33. end of file
  34.